home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / db / DBNumField.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  327 b   |  24 lines

  1. #ifndef _DBNUMFIELD_H_
  2. #define _DBNUMFIELD_H_
  3.  
  4. #ifndef _DBFIELD_H_
  5. #include "DBField.h"
  6. #endif
  7.  
  8. @interface DBNumField : DBField
  9. {
  10. }
  11.  
  12. -(int) intValue;
  13. -(float) floatValue;
  14. -(double) doubleValue;
  15.  
  16. -setIntValue: (int) aValue;
  17. -setFloatValue: (float) aValue;
  18. -setDoubleValue: (double) aValue;
  19.  
  20. @end
  21.  
  22. #endif
  23.  
  24.